home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / program / swagn_r.zip / NUMBERS.SWG / 0051_Ramdon Integer.pas < prev    next >
Pascal/Delphi Source File  |  1994-08-24  |  200b  |  11 lines

  1.  
  2. Function RandomInteger: Integer; Assembler;
  3. asm
  4.   mov ah,2ch
  5.   int 21h     { Get a random seed from DOS's clock }
  6.   imul 9821
  7.   inc ax
  8.   ror al,1
  9.   rol ah,1    { Randomize the seed }
  10. end;
  11.